home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 01109_Script_Disagree < prev    next >
Text File  |  1995-05-21  |  744b  |  26 lines

  1. on mouseDown
  2.   global AgreeOrNot
  3.   put "DisAgree" into x
  4.   put "DisAgreeHL" into y
  5.   hiliter 34, x, y
  6.   sound stop 1
  7.   puppetsound "button.aif"
  8.   put "no" into AgreeOrNot
  9.   updatestage
  10. end 
  11.  
  12. on mouseUp
  13.   global DayOfTheWeek, DayOrNight, OneOrTwo, gTheDay,¼
  14.  CorrectOrNot, AgreeOrNot, GameShow, TV2
  15.   
  16.   set the castNum of sprite 34 = cast "DisAgree"
  17.   updatestage
  18.   puppetsound 0
  19.   put "X" into GameShow
  20.   put "x" into TV2
  21.   if CorrectOrNot = "yes" and AgreeOrNot = "yes" then go frame "TVWin"
  22.   if CorrectOrNot = "yes" and AgreeOrNot = "no" then go frame "TVLose"
  23.   if CorrectOrNot = "no" and AgreeOrNot = "no" then go frame "TVWin"
  24.   if CorrectOrNot = "no" and AgreeOrNot = "yes" then go frame "TVLose"
  25.   
  26. end mouseup